sync.readOnly.m (field)

22 uses

	sync (current package)
		map.go#L72: 	m       map[any]*entry
		map.go#L122: 	e, ok := read.m[key]
		map.go#L129: 		e, ok = read.m[key]
		map.go#L206: 	if e, ok := read.m[key]; ok {
		map.go#L215: 	if e, ok := read.m[key]; ok {
		map.go#L228: 			m.read.Store(&readOnly{m: read.m, amended: true})
		map.go#L274: 	e, ok := read.m[key]
		map.go#L278: 		e, ok = read.m[key]
		map.go#L332: 	if e, ok := read.m[key]; ok {
		map.go#L343: 	if e, ok := read.m[key]; ok {
		map.go#L363: 			m.read.Store(&readOnly{m: read.m, amended: true})
		map.go#L376: 	if e, ok := read.m[key]; ok {
		map.go#L386: 	if e, ok := read.m[key]; ok {
		map.go#L408: 	e, ok := read.m[key]
		map.go#L412: 		e, ok = read.m[key]
		map.go#L463: 			read = readOnly{m: m.dirty}
		map.go#L471: 	for k, e := range read.m {
		map.go#L487: 	m.read.Store(&readOnly{m: m.dirty})
		map.go#L498: 	m.dirty = make(map[any]*entry, len(read.m))
		map.go#L499: 	for k, e := range read.m {